home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2003 March / DPPCPRO0303.ISO / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / def / DefDynaField.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  2.0 KB  |  72 lines

  1. package asp.wizard.def;
  2.  
  3. public class DefDynaField extends DefAbstract {
  4.    private String _labelText;
  5.    private String _theQuery;
  6.    private String _theDefaultValue;
  7.    private String _theDataField;
  8.    private int _theDataType;
  9.    private int _theUseDefaultValue;
  10.    private int _theUseQuery;
  11.  
  12.    public void setLabelText(String labelText) {
  13.       this._labelText = labelText;
  14.    }
  15.  
  16.    public String getLabelText() {
  17.       return this._labelText;
  18.    }
  19.  
  20.    public void setQueryComponent(String theQuery) {
  21.       this._theQuery = theQuery;
  22.    }
  23.  
  24.    public void setDefaultValue(String theDefaultValue) {
  25.       this._theDefaultValue = theDefaultValue;
  26.    }
  27.  
  28.    public void setDataField(String theDataField) {
  29.       this._theDataField = theDataField;
  30.    }
  31.  
  32.    public void setDataType(int theDataType) {
  33.       this._theDataType = theDataType;
  34.    }
  35.  
  36.    public void setUseDefaultValue(int theUseDefaultValue) {
  37.       this._theUseDefaultValue = theUseDefaultValue;
  38.    }
  39.  
  40.    public void setUseQuery(int theUseQuery) {
  41.       this._theUseQuery = theUseQuery;
  42.    }
  43.  
  44.    public String getQueryComponent() {
  45.       return this._theQuery;
  46.    }
  47.  
  48.    public String getDefaultValue() {
  49.       return this._theDefaultValue;
  50.    }
  51.  
  52.    public String getDataField() {
  53.       return this._theDataField;
  54.    }
  55.  
  56.    public int getDataType() {
  57.       return this._theDataType;
  58.    }
  59.  
  60.    public int getUseDefaultValue() {
  61.       return this._theUseDefaultValue;
  62.    }
  63.  
  64.    public int getUseQuery() {
  65.       return this._theUseQuery;
  66.    }
  67.  
  68.    public String getBaseName() {
  69.       return "MSDBDynaField";
  70.    }
  71. }
  72.